10. 文本 + 练习:你的第一个查询

第一个 SQL 语句

Parch & Posey 数据库中的表存储在下面方框的后台。你会注意到 SCHEMA 下的左侧列表(需要先点击刷新按钮)下面,是之前在 ERD 中显示的表列表。 与在大多数其他数据库环境中一样编写查询并运行,然后使用下表查看结果。在这节课中,我们一次只能访问一个表,但在后面的课程中,我们将增加表的数量并在各个表之间进行聚合。

Udacity SQL 环境

开始时,可以试着运行上一个视频中看到的查询! 可以在下面的环境中练习你自己的 SQL 代码。在左侧面板可以看到我们之前在 ERD 中看到的表。在右侧面板可以编写 SQL 代码,可以单击 EVALUATE 按钮就可以运行查询。这可能需要一会儿才能运行。

HISTORY 菜单将显示你以前运行的查询。 可以通过 MENU 从左侧面板删除 SCHEMA 和重置数据库。

SELECT *
FROM orders;

你会注意到 Derek 使用一个 demo 表(他在以后的课程中还会继续采用这种方式),但是你应该使用完全如左侧面板所示的表名来编写自己的查询。 我们将来还会在 Derek 所教授的课程中看到这些(删除了 demo )表格。

编写的每个查询至少要有两个部分:SELECT 和 FROM

Workspace

This section contains either a workspace (it can be a Jupyter Notebook workspace or an online code editor work space, etc.) and it cannot be automatically downloaded to be generated here. Please access the classroom with your account and manually download the workspace to your local machine. Note that for some courses, Udacity upload the workspace files onto https://github.com/udacity , so you may be able to download them there.

Workspace Information:

  • Default file path:
  • Workspace type: sql-evaluator
  • Opened files (when workspace is loaded): n/a

每个 SQL 查询

每个查询至少有一个 SELECT FROM 语句。 SELECT 语句用于放置要显示数据的 FROM 语句用于放置要从中提取数据的

该你试一试了

尝试编写自己的查询,以便为 orders 表中的所有订单选择 id account_id occurred_at 列。

Workspace

This section contains either a workspace (it can be a Jupyter Notebook workspace or an online code editor work space, etc.) and it cannot be automatically downloaded to be generated here. Please access the classroom with your account and manually download the workspace to your local machine. Note that for some courses, Udacity upload the workspace files onto https://github.com/udacity , so you may be able to download them there.

Workspace Information:

  • Default file path:
  • Workspace type: sql-evaluator
  • Opened files (when workspace is loaded): n/a